home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue45 / Clinic / Server.idl < prev   
Text File  |  2000-11-02  |  179b  |  14 lines

  1. module Server
  2. {
  3.   
  4.   interface ITest
  5.   {
  6.     double Get_DateAndTime();
  7.   };
  8.   
  9.   interface TestFactory
  10.   {
  11.     ITest CreateInstance(in string InstanceName);
  12.   };
  13.  
  14. };